const app = Vue.createApp({
data() {
return {
friends: [
{
id: 'manuel',
name: 'Manuel Lorenz',
phone: '01234 5678 991',
email: 'manuel@localhost.com',
},
{
id: 'julie',
name: 'Julie Jones',
phone: '09876 543 221',
email: 'julie@localhost.com',
},
],
};
},
});
app.component('friend-contact', {
template: `
{{ friend.name }}
- Phone: {{ friend.phone }}
- Email: {{ friend.email }}
`,
data() {
return {
detailsAreVisible: false,
friend: {
id: 'manuel',
name: 'Manuel Lorenzo',
phone: '01234 5678 991',
email: 'manuel@localhost.com',
},
};
},
methods: {
toggleDetails() {
this.detailsAreVisible = !this.detailsAreVisible;
},
},
});
app.mount('#app');